home *** CD-ROM | disk | FTP | other *** search
- /* PrintCurSyst.rexx
- * © LFSoft 1995-96
- *
- * Print to RAM:actu current setting of your system.
- * An example to use LFSystemBinder 2.0 AREXX commands...
- *
- * LFSystemBinder must run with its default Arexx port "LFSystemBinder.rdv"
- *
- * 26-07-1996: With LFSystemBinder 2.0, Variables are also grabbed.
- * Starting script with a "NEW" command.
- */
-
- address "LFSystemBinder.rdv"
-
- NEW
-
- GRAB ASSIGN '*'
- GRAB PATH
- GRAB RESIDENT
- /* Grab all top level variables but icons (.info) and preferences as they can
- * contain IFF datas (binaries).
- * Note: LFSystemBinder may complain about troncated variables.
- */
- GRAB VAR '~(#?.info|#?.prefs)'
-
- SORT ASSIGN
- SORT RESIDENT
- SORT VAR
-
- 'PRINT "RAM:Actu" "Actual values of your Amiga"'
-